home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 201.sit / HTML 201 / HTML 201.rsrc / TEXT_130.txt < prev    next >
Encoding:
Text File  |  1996-03-13  |  1.9 KB  |  81 lines

  1.  
  2. Drill 1
  3.  
  4. Let's open up simpletext or some other word processing program and type in the basic outline for an HTML document.
  5.  
  6. It should look like this:
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11. </TITLE>
  12. </HEAD>
  13. <BODY>
  14. </BODY>
  15. </HTML>
  16.  
  17. Type in a title for your document and also a title in the body of the document using a section header (refer back to HTML 101 for an explanation of section headers). Here is mine:
  18.  
  19. <HTML>
  20. <HEAD>
  21. <TITLE>
  22. George's page of lists
  23. </TITLE>
  24. </HEAD>
  25. <BODY>
  26. <H1>George's page of lists</H1> --------> section header
  27. </BODY>
  28. </HTML>
  29.  
  30. Now put in a paragraph of text explaining why you would take up precious server space with your page:
  31.  
  32. <HTML>
  33. <HEAD>
  34. <TITLE>
  35. George's page of lists
  36. </TITLE>
  37. </HEAD>
  38. <BODY>
  39. <H1>George's page of lists</H1>
  40. <P> --------> paragraph tag
  41. <HR>  --------> horizontal rule tag
  42. <P>
  43. This is my page of lists. It contains lists of things I like. But first let's define what a list is:
  44. <P> 
  45. </BODY>
  46. </HTML>
  47.  
  48. Let's use the definition list tags now:
  49.  
  50. <HTML>
  51. <HEAD>
  52. <TITLE>
  53. George's page of lists
  54. </TITLE>
  55. </HEAD>
  56. <BODY>
  57. <H1>George's page of lists</H1>
  58. <P>
  59. <HR>
  60. <P> 
  61. This is my page of lists. It contains lists of things I like. But first let's define what a list is:
  62. <P> 
  63. <DL> --------> opening definition list tag          Here they are!
  64. <DT>List --------> definition term tag
  65. <DD>A series of words. --------> definition description tag
  66. </DL> -------->closing definition list tag
  67. </BODY>
  68. </HTML>
  69.  
  70. Save this document (*REMEMBER* this  document needs to be saved as .html at the immediate end of the name you gave the document) in your word processing program and then open it using your browser.
  71.  
  72. You can compare what your document looks like with the example document I have included (lists.html).
  73.  
  74. If you do not see something similar:
  75.  
  76. 1.check your typing
  77. 2.make sure the document is saved as an HTML document
  78. 3.reload the document into the browser
  79.  
  80. Now we move on to drill 2.
  81.